Clover coverage report - Enterprise Web Services - 1.0
Coverage timestamp: Mon May 30 2005 17:10:32 CEST
file stats: LOC: 87   Methods: 0
NCLOC: 12   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
WSCFPortComponent.java - - - -
coverage
 1   
 /*
 2   
  * Copyright 2001-2004 The Apache Software Foundation.
 3   
  * 
 4   
  * Licensed under the Apache License, Version 2.0 (the "License");
 5   
  * you may not use this file except in compliance with the License.
 6   
  * You may obtain a copy of the License at
 7   
  * 
 8   
  *      http://www.apache.org/licenses/LICENSE-2.0
 9   
  * 
 10   
  * Unless required by applicable law or agreed to in writing, software
 11   
  * distributed under the License is distributed on an "AS IS" BASIS,
 12   
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13   
  * See the License for the specific language governing permissions and
 14   
  * limitations under the License.
 15   
  */
 16   
 
 17   
 package org.apache.geronimo.ews.ws4j2ee.context.webservices.server.interfaces;
 18   
 
 19   
 /**
 20   
  * This interfaces the port component element of the webservices.xml.
 21   
  */
 22   
 public interface WSCFPortComponent {
 23   
 
 24   
     /**
 25   
      * Gets the description of the port component Element
 26   
      *
 27   
      * @return description
 28   
      */
 29   
     public String getDescription();
 30   
 
 31   
     /**
 32   
      * Gets the display name of the port component Element
 33   
      *
 34   
      * @return display name
 35   
      */
 36   
     public String getDisplayName();
 37   
 
 38   
     /**
 39   
      * Gets the large icon of the port component Element
 40   
      *
 41   
      * @return large icon
 42   
      */
 43   
     public String getLargeIcon();
 44   
 
 45   
     /**
 46   
      * Gets the port componenet name of the port component Element
 47   
      *
 48   
      * @return name
 49   
      */
 50   
     public String getPortComponentName();
 51   
 
 52   
     /**
 53   
      * Gets the SEI of the port component Element
 54   
      *
 55   
      * @return SEI
 56   
      */
 57   
     public String getServiceEndpointInterface();
 58   
 
 59   
     /**
 60   
      * Gets the service implimentation bean of the port component Element
 61   
      *
 62   
      * @return service inplinmentation bean
 63   
      */
 64   
     public WSCFServiceImplBean getServiceImplBean();
 65   
 
 66   
     /**
 67   
      * Gets the small icon of the port component Element
 68   
      *
 69   
      * @return small icon
 70   
      */
 71   
     public String getSmallIcon();
 72   
 
 73   
     /**
 74   
      * Gets the wsdl port of the port component Element
 75   
      *
 76   
      * @return wsd; port
 77   
      */
 78   
     public WSCFWSDLPort getWsdlPort();
 79   
 
 80   
     /**
 81   
      * Gets the handlers of the port component Element as an array
 82   
      *
 83   
      * @return handlers
 84   
      */
 85   
     public WSCFHandler[] getHandlers();
 86   
 }
 87